added samples
[windows-sources.git] / sdk / samples / all in on code / Visual Studio 2010 / CSWPFAnimatedGIF / MainWindow.xaml
blob9708394d3302470eaf960f0a275030a0a4f98de3
1 <Window x:Class="CSWPFAnimatedGIF.MainWindow"
2         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4         xmlns:local="clr-namespace:CSWPFAnimatedGIF"
5         Title="Animated GIF" Height="300" Width="300">
6     <Grid>
7         <Grid.RowDefinitions>
8             <RowDefinition/>
9             <RowDefinition/>
10         </Grid.RowDefinitions>
11         <local:AnimatedGIFControl x:Name="GIFCtrl"/>
12         <Button x:Name="btnStart" Width="70" Height="30" Margin="50" 
13                 HorizontalAlignment="Left" Grid.Row="1" Click="btnStart_Click">Start</Button>
14         <Button x:Name="btnStop" Width="70" Height="30" Margin="50"
15                 HorizontalAlignment="Right" Grid.Row="1" Click="btnStop_Click">Stop</Button>        
16     </Grid>
17 </Window>